home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20020314-20021006 / 000308_fdc@columbia.edu_Tue Aug 20 13:07:18 EDT 2002.msg < prev    next >
Text File  |  2002-10-06  |  4KB  |  86 lines

  1. Article: 13638 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc,comp.unix.solaris
  5. Subject: Re: Problem switching from (ancient) shelltool to CDE's dttool (sol 9!)
  6. Date: 20 Aug 2002 13:07:03 -0400
  7. Organization: Columbia University
  8. Lines: 69
  9. Message-ID: <ajtsvn$gj1$1@watsol.cc.columbia.edu>
  10. References: <ajts6m$v0$1@panix1.panix.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1029863224 9316 128.59.39.139 (20 Aug 2002 17:07:04 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 20 Aug 2002 17:07:04 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13638 comp.unix.solaris:405037
  16.  
  17. In article <ajts6m$v0$1@panix1.panix.com>,
  18. David Combs <dkcombs@panix.com> wrote:
  19. : I just got a sunblade100, and have installed on it
  20. : the just-released Solaris 9.  Nice OS, lots of
  21. : nifty features, I'm told.
  22. : However, one big problem: no more support
  23. : for shelltool, which, after years of threats
  24. : from Sun, doesn't exist on 9.  (I'm now wearing
  25. : a black armband!)
  26. : (I've read, in comp.unix.solaris, that you can't (either
  27. : easily, or at all), move the solaris-7 (or 8) shelltool
  28. : executable to 9 and have it work, because Sun has also
  29. : removed various other things that are needed for
  30. : shelltool to run.)
  31. : Anyway, it doesn't work too well; I think the
  32. : immediate problems can be boiled down to solving
  33. : this one problem:
  34. Define "it".  First you said you could not use shell tool
  35. on Solaris 9, so what are you using instead?  dttool?
  36. xtool? ...
  37.  
  38. : (1) You say "ls -ls", and the screen (at my "shell
  39. : account" at the other end, to which I'm dialing into via
  40. : kermit) fills with, uh, ls-lines.
  41. : Now do "vi some-file" -- all those ls-lines are still
  42. : there, just overlaid by the "black" chars in some-file.
  43. : You hit ^L -- nothing happens.
  44. : You exit or ^Z vi, and try ^L again; still nothing.
  45. : You type the cmd "clear"; nothing happens.
  46. This would suggest that whatever you are using for a terminal
  47. emulator on Solaris 9 is not the same terminal type as the
  48. one you get with shell tool.  AND/OR that the host doesn't know
  49. what type of terminal it is (what does "echo $TERM" on the
  50. host say?) OR that the host has the terminal name but doesn't 
  51. support it.  Or it supports it, but not correctly, etc etc.
  52.  
  53. : (Could I 'research" this myself?  Doubtful --
  54. : I've *never* yet been able to comprehend the
  55. : ins and outs of serial communications, so much
  56. : so that even after a few years of using kermit
  57. : for my isp connection, I still get neither color
  58. : nor eg french accents.  Maybe you have a cookbook
  59. : way to enable that stuff, *without* my having to
  60. : understand what's behind it?)
  61. C-Kermit has a manual that explains this stuff in great detail,
  62. complete with pictures.
  63.  
  64. For French accents, you have to get C-Kermit to (a) use 8-bit
  65. characters ("set terminal byte 8") and (b) convert whatever
  66. character-set the remote host uses for French to whatever
  67. character-set your terminal emulator uses.
  68.  
  69. For color, your terminal emulator (blah tool) has to support
  70. it and the host needs to be told what kind of terminal you have
  71. and needs to have a termcap/terminfo entry that knows about its
  72. color capabilities AND applications that use that
  73. termcap/terminfo (e.g. color ls) to do color presentations.
  74.  
  75. - Frank
  76.